home *** CD-ROM | disk | FTP | other *** search
/ Programmer Power Tools / Programmer Power Tools.iso / progjrn / pj_7_2.arc / WINDEV1.ARC / SMLTPL next >
Text File  |  1988-12-04  |  855b  |  32 lines

  1. # Smltpl - Windows small memory model template.
  2. # This version of the template has been modified to send
  3. # debugging messages to the Winaux program.
  4.  
  5. # Written by Bill Hall
  6. # 3665 Benton Street, #66
  7. # Santa Clara, CA 95051
  8.  
  9. # no debug compile
  10. cp=cl -c -AS -Gw -W2 -Ox -Zpe
  11.  
  12. # Microsoft C 5.x compiler with PM libraries
  13. LIBPM=slibw slibcr libh/NOD/NOE
  14.  
  15. # Modify 'auxdir' to suit your environment
  16. auxdir=\pwcommon\wpmaux
  17.  
  18. # Dependencies
  19. smltpl.res : smltpl.rc smltpl.h
  20.     rc -r smltpl.rc
  21.  
  22. smltpl.obj : smltpl.c smltpl.h $(auxdir)\auxprt.h
  23.     $(cp) -I$(auxdir) -DWINAUX smltpl.c
  24.  
  25. smltplnt.obj : smltplnt.c smltpl.h
  26.     $(cp) -NT _INIT smltplnt.c
  27.     
  28. smltpl.exe : smltpl smltpl.def smltpl.res smltpl.obj smltplnt.obj
  29.     link4 smltpl smltplnt,smltpl/align:16,smltpl/m,$(LIBPM),smltpl.def
  30.     rc smltpl.res
  31.     mapsym smltpl
  32.